home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Documents / Other / KBNS.verification.32.1 / KBNS.11.3.011 / protoTest.m < prev    next >
Text File  |  1993-12-01  |  318b  |  13 lines

  1. @protocol TestProto
  2. -why:(id)hi that:(bycopy id)hello;
  3. @end
  4.  
  5. int main(void){
  6.   /*var*/ struct objc_method_description* md;
  7.   md=[@protocol(TestProto) descriptionForInstanceMethod:@selector(why:that:)];
  8.   fprintf(stderr,"%s   %s\n",[@protocol(TestProto) name], md->types);
  9.   #ifndef __cplusplus
  10.   exit(0);
  11.   #endif
  12.   }
  13.